home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / include / ace / limits.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  410 b   |  17 lines

  1. #ifndef LIMITS_H
  2. #define LIMITS_H 1
  3.  
  4. /*  maxima & minima    */
  5. #define MaxInt          2147483647
  6. #define MinInt         -2147483648
  7. #define MaxShort        32767
  8. #define MinShort       -32767        /* NOT -32768, due to the way ACE
  9.                     ** classifies integers during 
  10.                     ** compilation. 
  11.                     */
  12. #define MaxReal         9.22337177E+18
  13. #define MinReal        -9.22337177E+18
  14. #define MAXSTRINGLEN    1024&
  15.  
  16. #endif
  17.